@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: normal;
    font-weight: 100;
    src: local('Apple SD Gothic Neo Thin'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/100_AppleSDGothicNeo-Thin.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/100_AppleSDGothicNeo-Thin.otf') format('opentype');
}

@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: normal;
    font-weight: 200;
    src: local('Apple SD Gothic Neo UltraLight'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/200_AppleSDGothicNeo-UltraLight.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/200_AppleSDGothicNeo-UltraLight.otf') format('opentype');
}

@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: normal;
    font-weight: 300;
    src: local('Apple SD Gothic Neo Light'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/300_AppleSDGothicNeo-Light.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/300_AppleSDGothicNeo-Light.otf') format('opentype');
}

@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: normal;
    font-weight: 400;
    src: local('Apple SD Gothic Neo Medium'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/400_AppleSDGothicNeo-Medium.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/400_AppleSDGothicNeo-Medium.otf') format('opentype');
}

@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: normal;
    font-weight: 500;
    src: local('Apple SD Gothic Neo Regular'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/500_AppleSDGothicNeo-Regular.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/500_AppleSDGothicNeo-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: normal;
    font-weight: 600;
    src: local('Apple SD Gothic Neo SemiBold'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/600_AppleSDGothicNeo-SemiBold.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/600_AppleSDGothicNeo-SemiBold.otf') format('opentype');
}

@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: normal;
    font-weight: 700;
    src: local('Apple SD Gothic Neo Bold'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/700_AppleSDGothicNeo-Bold.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/700_AppleSDGothicNeo-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: normal;
    font-weight: 800;
    src: local('Apple SD Gothic Neo ExtraBold'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/800_AppleSDGothicNeo-ExtraBold.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/800_AppleSDGothicNeo-ExtraBold.otf') format('opentype');
}

@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: normal;
    font-weight: 900;
    src: local('Apple SD Gothic Neo Heavy'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/900_AppleSDGothicNeo-Heavy.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/npm/font-applesdgothicneo@1.0/fonts/900_AppleSDGothicNeo-Heavy.otf') format('opentype');
}


html,body {
	width: 100%; 
	height: 100%; 
	padding: 0; 
	margin: 0;
}

html {
  background: #fff;
  overflow: hidden;
  font-family: 'Apple SD Gothic Neo', sans-serif;
  font-weight: 400;
}

#bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	text-align: center;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10%;
	box-sizing: border-box;
}

#bg img {max-width: 100%}

.content {
	position: relative;
	display: block;
	width: 100%;
	height: 100vh;
}

.content-title {
	display: block;
	margin-bottom: 40px;
	font-size: 25px;
	line-height: 27px;
	font-family: Helvetica, sans-serif;
}

.gallery {
	position: relative;
	display: block;
	max-width: 100%;
	max-height: auto;
	margin: 0 auto;
	overflow: hidden;
	height: 100vh;
	text-align: center;
}
.gallery .slick-list {
	overflow: hidden;
	margin-top: 5%;
}
.gallery .slick-slide {
	outline: none !important;
}

.gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100px;
	height: 100px;
	font-size: 14px;
	font-family: Helvetica, sans-serif;
	line-height: 100px;
	text-align: center;
	background-color: rgba(0,0,0,0.5);
	z-index: 10;
	cursor: pointer;
	transition: background 0.3s ease;
	border-radius: 100%;
	overflow: hidden;
}
.gallery-arrow.mod-prev {
	left: 5%;
	border-radius: 0 4px 4px 0;
}
.gallery-arrow.mod-next {
	right: 5%;
	border-radius: 4px 0 0 4px;
}

.gallery-item {
	position: relative;
	float: left;
	vertical-align: middle;
	text-align: center;
}

.gallery-img-holder {
	display: inline-block;
	width: auto;
	height: auto;
	max-width: 600px;
	max-height: 600px;
	margin: 0 auto;
	padding-left: 80px;
}

.gallery-img {
	width: 100%;
	height: 100%;
}

.slick-lightbox .slick-arrow {
	z-index: 10;
}

.premiumlifeWrap, .business-slide {width: 100%; height: 100vh}

ul,li {margin: 0; padding: 0}

.premiumlifeWrap {}

.premiumlifeWrap .business-slide, 
.premiumlifeWrap .modal-slide {
	width: 100%;
	height: 100vh;
}

.premiumlifeWrap .business-slide li, 
.premiumlifeWrap .modal-slide li {
	max-width: 100%;
	margin: 0 auto !important;
	position: relative;
	width: 100%;
	text-align: center;
}


.premiumlifeWrap .bx-wrapper .bx-prev {
	position: absolute;
    top: 50%;
    left: 0;
	float: left;
	width: 36px;
	height: 68px;
	margin-left: 30px;
	background: url('/images/btn_arrow_left.png');
	background-size: cover;
}

.premiumlifeWrap .bx-wrapper .bx-next {
	position: absolute;
	top: 50%;
	right: 0;
	float: right;
	width: 36px;
	height: 68px;
	margin-right: 30px;
	background: url('/images/btn_arrow_right.png');
	background-size: cover;
}

.premiumlifeWrap .bx-wrapper .bx-pager {
	display: none
}

.premiumlifeWrap .slide-counter {
}

.pw_left {
	display: inline-block;
	float: left;
	width: 50%;
	position: relative
}

.pw_left .p01 {
	background: url("/images/main/premiumlife_img0101.png") no-repeat 0 0;
	background-size: cover;
	min-height: 500px
}

.pw_left .p02 {
	background: url("/images/main/premiumlife_img0201.png") no-repeat 0 0;
	background-size: cover;
	min-height: 500px
}

.pw_left .p03 {
	background: url("/images/main/premiumlife_img0301.png") no-repeat 0 0;
	background-size: cover;
	min-height: 500px
}

.pw_left .p04 {
	background: url("/images/main/premiumlife_img0401.png") no-repeat 0 0;
	background-size: cover;
	min-height: 500px
}

.pw_left span {
	position: absolute;
	bottom: 5px;
	right: 15px;
	font-size: 13px;
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8)
}

.pw_right {
	display: inline-block;
	position: relative;
	float: left;
	width: 50%;
	background: url("/images/main/premiumlife_bg.png") no-repeat 0 0;
	background-size: cover;
	min-height: 500px;

}
.pw_right .tag {
	position: absolute;
	top: 50px;
	left: 150px;
}

.pw_right .tlt {
	position: absolute;
	top: 115px;
	left: 150px;
	font-size: 42px;
	font-family: 'NanumSquare';
	font-weight: 600;
	color: #004755;
	letter-spacing: -2px
}
.pw_right .text {
	position: absolute;
	top: 190px;
	left: 150px;
	line-height: 1.3em;
}
.pw_right .img {
	position: absolute;
	top: 300px;
	left: 150px;
}
.pw_right .img p {
	position: relative;
	float: left;
	margin-right: 15px;
}
.pw_right .img p span {
	position: absolute;
	right: 15px;
	bottom: 5px;
	color: #fff;
	font-size: 13px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8)
}

.modal_close {
	position: fixed;
	top: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	z-index: 999;
	cursor: pointer;
}
.modal_close img {max-width: 100% !important}

.modal_close2 {
	position: fixed;
	top: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	z-index: 999;
	cursor: pointer;
}
.modal_close2 img {max-width: 100% !important}

.modal_close3 {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	z-index: 999;
}
.modal_close3 img {max-width: 100% !important}

.modal_con_box {
	display: table;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	max-width: 100%;
	margin: 0 auto 0;
	padding: 0 10%;
	box-sizing: border-box;
}
.modal_con_box .modal_con_left {
	position: relative;
	width: 50%;
	max-width: 100%;
	height: 100vh;
	text-align: center;
	box-sizing: border-box;
	display: table-cell;
	vertical-align: middle;
	box-sizing: border-box;
}

.modal_con_box .modal_con_left p {
	position: absolute;
	width: 100%;
	bottom: 60px;
}

.modal_con_box .modal_con_left.thumb_sero{
	display: inline-block;
	width: 70%;
	float: left;
	text-align: center;
	padding-top: 4%;
}

.modal_con_box .modal_con_left img.thumb_middle_sero {
	max-width: 100%;
	height: 100%;
    padding: 15% 0%;
    box-sizing: border-box;
}

.modal_con_box .modal_con_left img.thumb_middle_garo {
	max-width: 100%;
}

.modal_con_box .modal_con_left a.btn_modal_round {
	display: inline-block;
	width: 120px;
	height: 32px;
	line-height: 34px;
	margin: 10px 6px 0;
	border: 1px solid #333;
	color: #333;
	font-size: 14px;
	border-radius: 5px;
	text-decoration: none;
	background:#fff;
	cursor: pointer;
}


.modal_con_box .modal_con_right {
	display: inline-block;
    width: 30%;
    height: auto;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    padding-left: 10%;
}
.modal_con_box .modal_con_right  h2 {
	margin: 0;
	width: 100%;
}

.modal_con_box .modal_con_right  h3 {
	margin: 0;
	padding: 30px 0 10px;
	font-size: 75px;
	font-weight: bold;
	border-top: 2px solid #b99944;
	border-bottom: 2px solid #b99944;
	letter-spacing: 8px;
	width: 100%;
}

.modal_con_right dl {margin:0;}
.modal_con_right dt {font-size: 50px; font-weight: 600; border-bottom: 2px solid #b99944; padding: 20px 0; letter-spacing: 10px; margin: 0}
.modal_con_right dt > span {display: block; font-size: 24px; font-weight: normal; letter-spacing: 5px}
.modal_con_right dd {padding: 20px 0; line-height: 1.2em; text-align: center; font-size: 30px; margin: 0; border-bottom: 2px solid #b99944; word-break: keep-all;}
p {margin: 0}

.pc_mode {display: block;}
.mobile_mode {display: none;}

.slide-counter {
	position: fixed;
	/* border: 10px solid #000; */
	width:auto;
	display: block;
	bottom: 40px;
	color: #000;
	font-size: 24px;
	z-index: 9990;
	text-align: right;
	right: 20px;
}

@media (max-width: 1200px) {
	.slide-counter { 
		font-size: 20px;
		right: 5%;
		bottom: 7.5%;
	}

	header {max-height: 70px; background:#fff}
	header img {max-height: 70px}

	.pc_mode {display: none;}
	.mobile_mode {display: block;}

	.mobile_mode img {max-width: 100%; vertical-align: top; border:0}

	.modal_con_box .modal_con_left p {
		position: fixed;
		bottom: 60px;
		width: 100%;
		left: 0;
		z-index:999
	}

	

	.modal_con_box .modal_con_left a.btn_modal_round {
		width: 100px;
		height: 34px;
		line-height: 34px;
		margin: 10px 6px 0;
		font-size: 16px
	}

	p.m_foter_detail {
		position: relative;
		width: 100%;
		clear: both;
		margin-top: 40px;
	}

	p.m_foter_detail a.btn_modal_round {
		display: inline-block;
		border: 1px solid #333;
		color: #333;
		border-radius: 5px;
		text-decoration: none;
		background:#fff;
		cursor: pointer;
		width: 90px;
		height: 32px;
		line-height: 32px;
		font-size: 14px;
		float: left;
	}

	p.m_foter_detail a:last-child {
		float: right;
	}


	.modal_close2 {
		position: fixed;
		top: 30px;
		right: 30px;
		width: 40px;
		height: 40px;
		z-index: 999;
		cursor: pointer;
	}

	.premiumlifeWrap .bx-wrapper .bx-prev {
		float: left;
		margin-left: 10px;
		width: 26px;
		height: 34px;
		background: url(/images/btn_arrow_left.png) no-repeat;
		background-size: contain;
		position: absolute;
		top: 50%;
		left: 0;
	}


	.premiumlifeWrap .bx-wrapper .bx-next {
		float: right;
		margin-right: 10px;
		background: url(/images/btn_arrow_right.png) no-repeat;
		background-size: contain;
		width: 26px;
		height: 34px;
		position: absolute;
		top: 50%;
		right: 0;
	}


	.modal_close,
	.modal_close2 {
		position: fixed;
		top: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
		z-index: 999;
		cursor: pointer;
	}

}